home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / aros / source / exec / kernel / src / debug.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-16  |  861 b   |  52 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: debug.c 1.1 1995/12/17 21:49:32 digulla Exp digulla $
  4.     $Log: debug.c $
  5.  * Revision 1.1  1995/12/17  21:49:32  digulla
  6.  * Initial revision
  7.  *
  8.     Desc:
  9.     Lang: english
  10. */
  11. #include "exec_intern.h"
  12.  
  13. /*****************************************************************************
  14.  
  15.     NAME */
  16.     #include <clib/exec_protos.h>
  17.  
  18.     __AROS_LH1(void, Debug,
  19.  
  20. /*  SYNOPSIS */
  21.     __AROS_LA(unsigned long, flags, D0),
  22.  
  23. /*  LOCATION */
  24.     struct ExecBase *, SysBase, 19, Exec)
  25.  
  26. /*  FUNCTION
  27.  
  28.     INPUTS
  29.  
  30.     RESULT
  31.  
  32.     NOTES
  33.  
  34.     EXAMPLE
  35.  
  36.     BUGS
  37.  
  38.     SEE ALSO
  39.  
  40.     INTERNALS
  41.  
  42.     HISTORY
  43.     29-10-95    digulla automatically created from
  44.                 exec_lib.fd and clib/exec_protos.h
  45.  
  46. *****************************************************************************/
  47. {
  48.     __AROS_FUNC_INIT
  49.  
  50.     __AROS_FUNC_EXIT
  51. } /* Debug */
  52.